Produced by Araxis Merge on 2022-11-18 03:12:08 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | Porto Theme/app/design/frontend/Smartwave/porto/Magento_Sales/email | invoice_new_guest.html | 2016-06-21 09:41:00 +0000 |
| 2 | Theme Files/Magento 2.x/Porto Theme/app/design/frontend/Smartwave/porto/Magento_Sales/email | invoice_new_guest.html | 2022-11-02 03:44:10 +0000 |
| Description | Between Files 1 and 2 | |
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 7 | 150 |
| Changed | 6 | 15 |
| Inserted | 0 | 0 |
| Removed | 0 | 0 |
| Whitespace | Consecutive whitespace is treated as a single space |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
| Active line-pairing rules |
No regular expressions were active.
| 1 | <!-- | 1 | <!-- | |||
| 2 | /** | 2 | /** | |||
| 3 | * Copyright © 2016 Magento. All rights reserved. | 3 | * Copyright © 2016 Magento. All rights reserved. | |||
| 4 | * See COPYING.txt for license details. | 4 | * See COPYING.txt for license details. | |||
| 5 | */ | 5 | */ | |||
| 6 | --> | 6 | --> | |||
| 7 | <!--@subject {{trans "Invoice for your %store_name order" store_name=$store.getFrontendName()}} @--> | 7 | <!--@subject {{trans "Invoice for your %store_name order" store_name=$store.getFrontendName()}} @--> | |||
| 8 | <!--@vars { | 8 | <!--@vars { | |||
| 9 | "var formattedBillingAddress|raw":"Billing Address", | 9 | "var formattedBillingAddress|raw":"Billing Address", | |||
| 10 | "var billing.getName()":"Guest Customer Name", | 10 | "var billing.getName()":"Guest Customer Name", | |||
| 11 | "var comment":"Invoice Comment", | 11 | "var comment":"Invoice Comment", | |||
| 12 | "var invoice.increment_id":"Invoice Id", | 12 | "var invoice.increment_id":"Invoice Id", | |||
| 13 | "layout handle=\"sales_email_order_invoice_items\" invoice=$invoice order=$order":"Invoice Items Grid", | 13 | "layout handle=\"sales_email_order_invoice_items\" invoice=$invoice order=$order":"Invoice Items Grid", | |||
| 14 | "var order.increment_id":"Order Id", | 14 | "var order.increment_id":"Order Id", | |||
| 15 | "var payment_html|raw":"Payment Details", | 15 | "var payment_html|raw":"Payment Details", | |||
| 16 | "var formattedShippingAddress|raw":"Shipping Address", | 16 | "var formattedShippingAddress|raw":"Shipping Address", | |||
| 17 | "var order.getShippingDescription()":"Shipping Description", | 17 | "var order.getShippingDescription()":"Shipping Description", | |||
| 18 | "var order.shipping_description":"Shipping Description" | 18 | "var order.shipping_description":"Shipping Description" | |||
| 19 | } @--> | 19 | } @--> | |||
| 20 | {{template config_path="design/email/header_template"}} | 20 | {{template config_path="design/email/header_template"}} | |||
| 21 | 21 | |||||
| 22 | <table> | 22 | <table> | |||
| 23 | <tr class="email-intro"> | 23 | <tr class="email-intro"> | |||
| 24 | <td> | 24 | <td> | |||
| 25 | <p class="greeting">{{trans "%name," name=$billing.getName()}}</p> | 25 | <p class="greeting">{{trans "%name," name=$order_data.customer_name}}</p> | |||
| 26 | <p> | 26 | <p> | |||
| 27 | {{trans "Thank you for your order from %store_name." store_name=$store.getFrontendName()}} | 27 | {{trans "Thank you for your order from %store_name." store_name=$store.frontend_name}} | |||
| 28 | {{depend store_hours}} | |||||
| 29 | {{trans 'Our hours are <span class="no-link">%store_hours</span>.' store_hours=$store_hours |raw}} | |||||
| 30 | {{/depend}} | |||||
| 28 | </p> | 31 | </p> | |||
| 29 | <p> | 32 | <p> | |||
| 30 | {{trans 'If you have questions about your order, you can email us at <a href="mailto:%store_email">%store_email</a>.' store_email=$store_email |raw}} | 33 | {{trans 'If you have questions about your order, you can email us at <a href="mailto:%store_email">%store_email</a>.' store_email=$store_email |raw}} | |||
| 31 | </p> | 34 | </p> | |||
| 32 | </td> | 35 | </td> | |||
| 33 | </tr> | 36 | </tr> | |||
| 34 | <tr class="email-summary"> | 37 | <tr class="email-summary"> | |||
| 35 | <td> | 38 | <td> | |||
| 36 | <h1>{{trans "Your Invoice #%invoice_id for Order #%order_id" invoice_id=$invoice.increment_id order_id=$order.increment_id}}</h1> | 39 | <h1>{{trans "Your Invoice #%invoice_id for Order #%order_id" invoice_id=$invoice.increment_id order_id=$order.increment_id}}</h1> | |||
| 37 | </td> | 40 | </td> | |||
| 38 | </tr> | 41 | </tr> | |||
| 39 | <tr class="email-information"> | 42 | <tr class="email-information"> | |||
| 40 | <td> | 43 | <td> | |||
| 41 | {{depend comment}} | 44 | {{depend comment}} | |||
| 42 | <table class="message-info"> | 45 | <table class="message-info"> | |||
| 43 | <tr> | 46 | <tr> | |||
| 44 | <td> | 47 | <td> | |||
| 45 | {{var comment|escape|nl2br}} | 48 | {{var comment|escape|nl2br}} | |||
| 46 | </td> | 49 | </td> | |||
| 47 | </tr> | 50 | </tr> | |||
| 48 | </table> | 51 | </table> | |||
| 49 | {{/depend}} | 52 | {{/depend}} | |||
| 50 | <table class="order-details"> | 53 | <table class="order-details"> | |||
| 51 | <tr> | 54 | <tr> | |||
| 52 | <td class="address-details"> | 55 | <td class="address-details"> | |||
| 53 | <h3>{{trans "Billing Info"}}</h3> | 56 | <h3>{{trans "Billing Info"}}</h3> | |||
| 54 | <p>{{var formattedBillingAddress|raw}}</p> | 57 | <p>{{var formattedBillingAddress|raw}}</p> | |||
| 55 | </td> | 58 | </td> | |||
| 56 | {{depend order.getIsNotVirtual()}} | 59 | {{depend order_data.is_not_virtual}} | |||
| 57 | <td class="address-details"> | 60 | <td class="address-details"> | |||
| 58 | <h3>{{trans "Shipping Info"}}</h3> | 61 | <h3>{{trans "Shipping Info"}}</h3> | |||
| 59 | <p>{{var formattedShippingAddress|raw}}</p> | 62 | <p>{{var formattedShippingAddress|raw}}</p> | |||
| 60 | </td> | 63 | </td> | |||
| 61 | {{/depend}} | 64 | {{/depend}} | |||
| 62 | </tr> | 65 | </tr> | |||
| 63 | <tr> | 66 | <tr> | |||
| 64 | <td class="method-info"> | 67 | <td class="method-info"> | |||
| 65 | <h3>{{trans "Payment Method"}}</h3> | 68 | <h3>{{trans "Payment Method"}}</h3> | |||
| 66 | {{var payment_html|raw}} | 69 | {{var payment_html|raw}} | |||
| 67 | </td> | 70 | </td> | |||
| 68 | {{depend order.getIsNotVirtual()}} | 71 | {{depend order_data.is_not_virtual}} | |||
| 69 | <td class="method-info"> | 72 | <td class="method-info"> | |||
| 70 | <h3>{{trans "Shipping Method"}}</h3> | 73 | <h3>{{trans "Shipping Method"}}</h3> | |||
| 71 | <p>{{var order.getShippingDescription()}}</p> | 74 | <p>{{var order.shipping_description}}</p> | |||
| 72 | </td> | 75 | </td> | |||
| 73 | {{/depend}} | 76 | {{/depend}} | |||
| 74 | </tr> | 77 | </tr> | |||
| 75 | </table> | 78 | </table> | |||
| 76 | {{layout handle="sales_email_order_invoice_items" invoice=$invoice order=$order}} | 79 | {{layout handle="sales_email_order_invoice_items" invoice_id=$invoice_id order_id=$order_id}} | |||
| 77 | </td> | 80 | </td> | |||
| 78 | </tr> | 81 | </tr> | |||
| 79 | </table> | 82 | </table> | |||
| 80 | 83 | |||||
| 81 | {{template config_path="design/email/footer_template"}} | 84 | {{template config_path="design/email/footer_template"}} |
Araxis Merge (but not the data content of this report) is Copyright © 1993–2019 Araxis Ltd (www.araxis.com). All rights reserved.